home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Tools & Apps / Misc. Utilities / Installer / Installer 3.3 / Installer 3.3 Interfaces / ActionAtomIntf.a next >
Encoding:
Text File  |  1992-01-22  |  861 b   |  40 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        ActionAtomIntf.a
  3. ;
  4. ;    Contains:    Assembler declarations for things the Installer wants to tell 
  5. ;                action atoms about.
  6. ;
  7. ;    Written by:    Bobby Carp
  8. ;
  9. ;    Copyright:    © 1990 by Apple Computer, Inc., all rights reserved.
  10. ;
  11. ;    Change History (most recent first):
  12. ;
  13. ;         <2>     11/7/90    BAC        Adding the AAPBRec that defines the parameters an action atom
  14. ;                                    receives.
  15. ;         <1>     10/8/90    BAC        first checked in
  16. ;
  17. ;    To Do:
  18. ;
  19.  
  20.  
  21. before               EQU         0
  22. after            EQU         1
  23. cleanUpCancel    EQU            2
  24.  
  25.  
  26. ; The action atom param block record contains all of the parameters that action atoms 
  27. ; receive.  The first (and only) parameter to action atoms is a ptr to this block 
  28.  
  29. AAPBRec RECORD    0
  30. targetVRefNum        ds.w    1
  31. blessedDirID        ds.l    1
  32. aaRefCon            ds.l    1
  33. doingInstall        ds.b    1    
  34. whichStage            ds.b    1
  35. didLiveUpdate        ds.b    1
  36. pad1                ds.b    1
  37. installerTempDirID    ds.l    1
  38. size                EQU        *
  39.         ENDR
  40.